home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 19 / Amiga Plus Leser CD 19.iso / Tools / Freeware / PerfectPaint / rexx / Border / Script&Picture / Lace.brx < prev    next >
Text File  |  2002-10-06  |  667b  |  49 lines

  1. /* Old Border */
  2.  
  3.     options results
  4.     parse ARG Port b
  5.     
  6.     ADDRESS value Port
  7.  
  8.     pp_Progresstext 'Border'
  9.  
  10.     pp_GetWidth
  11.     W=result
  12.     pp_GetHeight
  13.     H=result
  14.     pp_ClosestColor 255 255 255
  15.     White=result
  16.     pp_ClosestColor 0 0 0
  17.     Black=result
  18.  
  19.     pp_StencilOff
  20.     pp_EffectOff
  21.     pp_SpareOnOff
  22.     pp_ComposeReqOff
  23.     pp_Compose 0 100 0
  24.     pp_SetApen Black
  25.     pp_SetBpen White
  26.     pp_Cls
  27.  
  28.     Tot=6
  29.  
  30.     pp_EffectOn
  31.     pp_Progress 1 Tot
  32.     pp_Displace 40
  33.     pp_BoxF 0 0 W-1 H-1
  34.     pp_Progress 2 Tot
  35.     pp_Median 2
  36.     pp_BoxF 0 0 W-1 H-1
  37.     pp_Progress 3 Tot
  38.     pp_GaussianBlur 10
  39.     pp_BoxF 0 0 W-1 H-1
  40.     pp_Progress 4 Tot
  41.     pp_Adjustlevels 100 158
  42.     pp_EffectOff
  43.  
  44.     pp_Progress 5 Tot
  45.     pp_SparetoStencil
  46.     pp_InvStencil
  47.  
  48.     EXIT
  49.